From: Keir Fraser Date: Fri, 20 Jun 2008 17:42:45 +0000 (+0100) Subject: PV-GRUB: fix reiserfs 64bit support X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14192^2~32 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=40f4c996cd079867254fa2824edfede4f4b19e85;p=xen.git PV-GRUB: fix reiserfs 64bit support Signed-off-by: Samuel Thibault --- diff --git a/stubdom/grub.patches/99minios b/stubdom/grub.patches/99minios index 3efc57177c..f2c11fefe0 100644 --- a/stubdom/grub.patches/99minios +++ b/stubdom/grub.patches/99minios @@ -832,7 +832,18 @@ Index: grub/stage2/fsys_iso9660.c Index: grub/stage2/fsys_reiserfs.c =================================================================== --- grub.orig/stage2/fsys_reiserfs.c 2008-06-16 15:18:03.410933000 +0100 -+++ grub/stage2/fsys_reiserfs.c 2008-06-16 15:18:14.786009000 +0100 ++++ grub/stage2/fsys_reiserfs.c 2008-06-20 18:33:52.002100000 +0100 +@@ -224,8 +224,8 @@ + + struct disk_child + { +- unsigned long dc_block_number; /* Disk child's block number. */ +- unsigned short dc_size; /* Disk child's used space. */ ++ __u32 dc_block_number; /* Disk child's block number. */ ++ __u16 dc_size; /* Disk child's used space. */ + }; + + #define DC_SIZE (sizeof (struct disk_child)) @@ -369,7 +369,14 @@ static __inline__ unsigned long log2 (unsigned long word)